laravel send post request from controller

45

laravel send post request from controller -

use Illuminate\Support\Facades\Http;

$response = Http::post('http://example.com/users', [
    'name' => 'Steve',
    'role' => 'Network Administrator',
]);

// By default, data will be sent using the application/json content type

Comments

Submit
0 Comments